home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
ff.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-28
|
1KB
|
54 lines
/*
ff.C
Version 1.5
Form Feed
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
Developed with: Borland C++ 3.1
*/
/*
set ti=c:\borlandc\tsr\tsrlib
t ff -hl
*/
#if !defined(__TINY__)
#error Tiny Memory Model Expected
#endif
#include "tsrlib.H"
char *title = "\r\n"
"╔═════════════════════════════════════════╗\r\n"
"║ ▒▒▒▒▒ ▒▒▒▒▒ ║\r\n"
"║ ▒ ▒ ║\r\n"
"║ ▒ ▒ ║\r\n"
"║ ▒▒▒▒ ▒▒▒▒ Version 1.5 ║\r\n"
"║ ▒ ▒ ║\r\n"
"║ ▒ ▒ ║\r\n"
"║ ▒ ▒ ║\r\n"
"║ ║\r\n"
"║ Copyright (C) 1993, Geoff Friesen B.Sc. ║\r\n"
"║ All rights reserved. ║\r\n"
"╚═════════════════════════════════════════╝\r\n"
"$";
#define LPT1 0
void main (void)
{
_DX = LPT1;
_AL = CR;
_AH = 0;
geninterrupt(0x17);
_DX = LPT1;
_AL = FF;
_AH = 0;
geninterrupt(0x17);
}